home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 15 / Amiga Plus Leser CD 15.iso / Tools / Development / yacas_alg / yacas_morphos / share / yacas / include / debugmem.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-03-13  |  425 b   |  24 lines

  1.  
  2.  
  3. #ifndef __debugmem_h__
  4. #define __debugmem_h__
  5.  
  6.  
  7. #ifdef DEBUG_MODE
  8.  
  9. #ifdef NO_GLOBALS
  10. #error "Memory heap checking only possible with global variables!"
  11. #endif
  12.  
  13.   void* YacasMallocPrivate(unsigned long size, char* aFile, int aLine);
  14.   void* YacasReAllocPrivate(void* orig, unsigned long size, char* aFile, int aLine);
  15.   void YacasFreePrivate(void* aOrig);
  16.   void YacasCheckMemory();
  17.   void CheckAllPtrs();
  18. #endif
  19.  
  20. #endif
  21.  
  22.  
  23.  
  24.